home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / crtex / ex7.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  154 b   |  9 lines

  1. Program Example7;
  2. uses Crt;
  3.  
  4. { Program to demonstrate the WhereX and WhereY functions. }
  5.  
  6. begin
  7.   Writeln('Cursor postion: X=',WhereX,' Y=',WhereY);
  8. end.
  9.